home *** CD-ROM | disk | FTP | other *** search
- ; PRTY.ASM - (c) Mike Dasler
- ; This program will set the parity flag and call the parity NMI.
- ;
- ;***************** Beginning of Parint Instructions ******************
- cseg segment
- assume cs:cseg
- org 100h
-
- ;*************************** NMI handler ******************************
-
- newint proc near ; New interrupt handler
- assume ds:cseg, es:cseg
- push cs
- xor ax,ax
- push ax
- int 2 ; Call parity interupt.
- ret ; Return from this program to DOS
- newint endp
-
- cseg ends
- end
-